Typo fixes.
authorRobert Lipe <robertlipe@gpsbabel.org>
Thu, 2 Nov 2017 21:59:28 +0000 (16:59 -0500)
committerRobert Lipe <robertlipe@gpsbabel.org>
Thu, 2 Nov 2017 21:59:28 +0000 (16:59 -0500)
zlib/README.gpsbabel
zlib/inflate.c

index a9e511930f8bf1fdb4c913acf4d985520263c2fb..7f179de443a5f90036909122b8af54f06a68f5a6 100644 (file)
@@ -2,5 +2,4 @@ modified subset of zlib-1.2.8 from zlib.net.
 1.  zconf.h is modified to include our config.h
 2.  gzlib.c is modified to resolve a seek problem with uncompressed files on windows platforms build with mingw32 gcc.
 see gzlib.patch
-3.  inflatte.c: fix hyper Warning inflateMark() about shifting a negative number - shift, then negate instead.
-
+3.  inflate.c: Fix hyperctive warning for inflateMark() about shifting a negative number - shift, then negate instead.
index 777db29f2fe347a9299076feb2237605cbf61696..c807e3a417e65d78258fd5c3136d2adba72567a9 100644 (file)
@@ -1504,7 +1504,7 @@ z_streamp strm;
 {
     struct inflate_state FAR *state;
 // Begin GPSBabel
-//Orig
+// Orig
 //  if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
 // Fix
     if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16);